home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / math / nrpas13 / beta.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1991-04-29  |  99 b   |  5 lines

  1. FUNCTION beta(VAR z,w: real): real;
  2. BEGIN
  3.    beta := exp(gammln(z)+gammln(w)-gammln(z+w))
  4. END;
  5.